##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 06\06.10 - Transforming range into a list.py
# Description: Transforming range into a list
##############################################################################
L = list(range(100, 1100, 50))
print(L)